VERSION 4.00 Begin VB.Form frmNameEntry Appearance = 0 'Flat BackColor = &H00C0C0C0& BorderStyle = 3 'Fixed Dialog Caption = "High Score Entry" ClientHeight = 1530 ClientLeft = 2550 ClientTop = 3195 ClientWidth = 4860 ControlBox = 0 'False BeginProperty Font name = "MS Sans Serif" charset = 0 weight = 700 size = 8.25 underline = 0 'False italic = 0 'False strikethrough = 0 'False EndProperty ForeColor = &H80000008& Height = 1935 Left = 2490 LinkTopic = "Form4" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 1530 ScaleWidth = 4860 Top = 2850 Width = 4980 Begin VB.CommandButton cmdOK Appearance = 0 'Flat BackColor = &H80000005& Caption = "OK" Height = 375 Left = 1608 TabIndex = 2 Top = 1008 Width = 1485 End Begin VB.TextBox txtName Appearance = 0 'Flat Height = 345 Left = 2148 TabIndex = 1 Top = 408 Width = 2535 End Begin VB.Label Label1 Appearance = 0 'Flat BackColor = &H80000005& BackStyle = 0 'Transparent Caption = "Enter First Name:" BeginProperty Font name = "MS Sans Serif" charset = 0 weight = 400 size = 9.75 underline = 0 'False italic = 0 'False strikethrough = 0 'False EndProperty ForeColor = &H80000008& Height = 252 Left = 336 TabIndex = 0 Top = 504 Width = 1740 End Attribute VB_Name = "frmNameEntry" Attribute VB_Creatable = False Attribute VB_Exposed = False Option Explicit Private Sub cmdOK_Click() frmNameEntry.Hide End Sub